home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / include / gtk-2.0 / gtk / gtkpreview.h < prev    next >
Encoding:
C/C++ Source or Header  |  2006-04-25  |  4.3 KB  |  141 lines

  1. /* GTK - The GIMP Toolkit
  2.  * Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald
  3.  *
  4.  * This library is free software; you can redistribute it and/or
  5.  * modify it under the terms of the GNU Lesser General Public
  6.  * License as published by the Free Software Foundation; either
  7.  * version 2 of the License, or (at your option) any later version.
  8.  *
  9.  * This library is distributed in the hope that it will be useful,
  10.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  11.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  12.  * Lesser General Public License for more details.
  13.  *
  14.  * You should have received a copy of the GNU Lesser General Public
  15.  * License along with this library; if not, write to the
  16.  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
  17.  * Boston, MA 02111-1307, USA.
  18.  */
  19.  
  20. /*
  21.  * Modified by the GTK+ Team and others 1997-2000.  See the AUTHORS
  22.  * file for a list of people on the GTK+ Team.  See the ChangeLog
  23.  * files for a list of changes.  These files are distributed with
  24.  * GTK+ at ftp://ftp.gtk.org/pub/gtk/. 
  25.  */
  26.  
  27. #ifndef GTK_DISABLE_DEPRECATED
  28.  
  29. #ifndef __GTK_PREVIEW_H__
  30. #define __GTK_PREVIEW_H__
  31.  
  32.  
  33. #include <gtk/gtkwidget.h>
  34.  
  35.  
  36. G_BEGIN_DECLS
  37.  
  38. #define GTK_TYPE_PREVIEW            (gtk_preview_get_type ())
  39. #define GTK_PREVIEW(obj)            (GTK_CHECK_CAST ((obj), GTK_TYPE_PREVIEW, GtkPreview))
  40. #define GTK_PREVIEW_CLASS(klass)    (GTK_CHECK_CLASS_CAST ((klass), GTK_TYPE_PREVIEW, GtkPreviewClass))
  41. #define GTK_IS_PREVIEW(obj)         (GTK_CHECK_TYPE ((obj), GTK_TYPE_PREVIEW))
  42. #define GTK_IS_PREVIEW_CLASS(klass) (GTK_CHECK_CLASS_TYPE ((klass), GTK_TYPE_PREVIEW))
  43. #define GTK_PREVIEW_GET_CLASS(obj)  (GTK_CHECK_GET_CLASS ((obj), GTK_TYPE_PREVIEW, GtkPreviewClass))
  44.  
  45.  
  46. typedef struct _GtkPreview       GtkPreview;
  47. typedef struct _GtkPreviewInfo   GtkPreviewInfo;
  48. typedef union  _GtkDitherInfo    GtkDitherInfo;
  49. typedef struct _GtkPreviewClass  GtkPreviewClass;
  50.  
  51. struct _GtkPreview
  52. {
  53.   GtkWidget widget;
  54.  
  55.   guchar *buffer;
  56.   guint16 buffer_width;
  57.   guint16 buffer_height;
  58.  
  59.   guint16 bpp;
  60.   guint16 rowstride;
  61.  
  62.   GdkRgbDither dither;
  63.  
  64.   guint type : 1;
  65.   guint expand : 1;
  66. };
  67.  
  68. struct _GtkPreviewInfo
  69. {
  70.   guchar *lookup;
  71.  
  72.   gdouble gamma;
  73. };
  74.  
  75. union _GtkDitherInfo
  76. {
  77.   gushort s[2];
  78.   guchar c[4];
  79. };
  80.  
  81. struct _GtkPreviewClass
  82. {
  83.   GtkWidgetClass parent_class;
  84.  
  85.   GtkPreviewInfo info;
  86.  
  87. };
  88.  
  89.  
  90. GtkType         gtk_preview_get_type           (void) G_GNUC_CONST;
  91. void            gtk_preview_uninit             (void);
  92. GtkWidget*      gtk_preview_new                (GtkPreviewType   type);
  93. void            gtk_preview_size               (GtkPreview      *preview,
  94.                         gint             width,
  95.                         gint             height);
  96. void            gtk_preview_put                (GtkPreview      *preview,
  97.                         GdkWindow       *window,
  98.                         GdkGC           *gc,
  99.                         gint             srcx,
  100.                         gint             srcy,
  101.                         gint             destx,
  102.                         gint             desty,
  103.                         gint             width,
  104.                         gint             height);
  105. void            gtk_preview_draw_row           (GtkPreview      *preview,
  106.                         guchar          *data,
  107.                         gint             x,
  108.                         gint             y,
  109.                         gint             w);
  110. void            gtk_preview_set_expand         (GtkPreview      *preview,
  111.                         gboolean         expand);
  112.  
  113. void            gtk_preview_set_gamma          (double           gamma_);
  114. void            gtk_preview_set_color_cube     (guint            nred_shades,
  115.                         guint            ngreen_shades,
  116.                         guint            nblue_shades,
  117.                         guint            ngray_shades);
  118. void            gtk_preview_set_install_cmap   (gint             install_cmap);
  119. void            gtk_preview_set_reserved       (gint             nreserved);
  120. void            gtk_preview_set_dither         (GtkPreview      *preview,
  121.                         GdkRgbDither     dither);
  122. #ifndef GTK_DISABLE_DEPRECATED
  123. GdkVisual*      gtk_preview_get_visual         (void);
  124. GdkColormap*    gtk_preview_get_cmap           (void);
  125. #endif
  126. GtkPreviewInfo* gtk_preview_get_info           (void);
  127.  
  128. /* This function reinitializes the preview colormap and visual from
  129.  * the current gamma/color_cube/install_cmap settings. It must only
  130.  * be called if there are no previews or users's of the preview
  131.  * colormap in existence.
  132.  */
  133. void            gtk_preview_reset              (void);
  134.  
  135.  
  136. G_END_DECLS
  137.  
  138. #endif /* __GTK_PREVIEW_H__ */
  139.  
  140. #endif /* GTK_DISABLE_DEPRECATED */
  141.